home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day06 / mdichild.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-08  |  876 b   |  24 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef MDIChildH
  3. #define MDIChildH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TChild : public TForm
  12. {
  13. __published:    // IDE-managed Components
  14.     TImage *Image;
  15.     void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  16. private:    // User declarations
  17. public:        // User declarations
  18.     __fastcall TChild(TComponent* Owner);
  19. };
  20. //---------------------------------------------------------------------------
  21. extern PACKAGE TChild *Child;
  22. //---------------------------------------------------------------------------
  23. #endif
  24.